SQLiteBlob Constructor(Byte[])
Initializes a new instance of the
SQLiteBlob class, setting the
Value property to the provided array of bytes.
public SQLiteBlob(
byte[]
)
'Declaration
Public Function New( _
ByVal () As Byte _
)
Parameters
- value
- The byte array to be stored in the Value property.
byte[] byteArray = { 1, 2, 3, 4, 5};
SQLiteBlob blob1 = new SQLiteBlob(byteArray);
Dim byteArray As Byte() = New Byte() {1, 2, 3, 4, 5}
Dim blob1 As New SQLiteBlob(byteArray)